home *** CD-ROM | disk | FTP | other *** search
- function ZoomButton()
- {
- this.sectionHolder = eval(this.sectionHolder);
- this.label_tf.text = this.label;
- this.sectionHolder.loadSection(this.label,this.sectionLink);
- this.onRollOver = this.zoomToSection;
- this.onRelease = this.zoomToDetail;
- this.useHandCursor = this.handOnRollover;
- }
- ZoomButton.prototype = new MovieClip();
- ZoomButton.prototype.zoomToSection = function()
- {
- this.sectionHolder.zoomToSection(this.label);
- };
- ZoomButton.prototype.zoomToDetail = function()
- {
- this.sectionHolder.zoomToDetail(this.label);
- };
- Object.registerClass("zoomButton",ZoomButton);
-